home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / thor / examples / showtext_ex.thor < prev   
Text File  |  1996-11-10  |  355b  |  27 lines

  1. /*
  2.  *
  3.  *  ShowText_ex.thor - example program for the SHOWTEXT function
  4.  *
  5.  */
  6.  
  7. options results
  8.  
  9. thorport = address()
  10.  
  11. REQUESTFILE title '"Select text file to view:"' id '"s:"' fullpath
  12. if(rc ~= 0) then
  13. do
  14.     if(rc = 30) then say THOR.LASTERROR
  15.     exit
  16. end
  17.  
  18. filename = result
  19.  
  20. SHOWTEXT file '"'filename'"' CMT
  21. if(rc = 30) then
  22. do
  23.     say THOR.LASTERROR
  24. end
  25.  
  26. exit
  27.